home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / dsp / dspgroup / m56000_1.arc / FFT1024.ASM < prev    next >
Encoding:
Assembly Source File  |  1986-01-19  |  466 b   |  31 lines

  1.     page    132,66,2,2
  2.     opt    nomd,nomex,loc,cre,nocex
  3.  
  4.     include    'fftlib'
  5.  
  6. ;
  7. ; Main program to call the FFT macro
  8. ;    Argument list
  9. ;
  10. ;    1024 point complex DIT FFT
  11. ;    10 FFT passes
  12. ;    Data starts at address 0
  13. ;    Twiddle factor table starts at address 1024
  14. ;
  15. reset    equ    0
  16. start    equ    $100
  17. points    equ    1024
  18. passes    equ    10
  19. data    equ    0
  20. twiddle    equ    1024
  21.  
  22.     sin1024    twiddle
  23.  
  24.     opt    mex
  25.     org    p:reset
  26.     jmp    start
  27.  
  28.     org    p:start
  29.     ditfft    points,passes,data,twiddle
  30.     end
  31.